home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / database / wincat32.zip / BUGSFIXD.DOC < prev    next >
Text File  |  1993-06-08  |  13KB  |  262 lines

  1. Summary of bugs that where reported in WinCat/PRO 3.0, and that have been
  2. eliminated in WinCat/PRO 3.2.0 if possible : 
  3.  
  4. ---------------------------------------------------------------------------
  5. PRB0001
  6. Symptom : Runtime error 2 when ending WinCat, or message 'catalog
  7.           does not exist' when opening an existing catalog, etc.
  8. Occurs  : Immediately after deleting a volume who's .ACT file did not 
  9.           exist or could not be found.
  10. Cause   : When deleting a volume from the catalog, WinCat tries to erase
  11.           the associated .ACT file. If this file doesn't exist, then 
  12.           WinCat intercepts and ignores the resulting I/O-error. However,
  13.           'somehow' this errorcondition re-appears on the first I/O-
  14.           operation WinCat performs (eg. closing the catalog, opening
  15.           another catalog, opening an import text-file etc.).
  16. Fix     : WinCat now first checks if the .ACT file exists before erasing it.   
  17. Modules : WINCAT.PAS(TWinCatDialog.B_Erase)
  18. Status  : fixed 22-04-93
  19. ---------------------------------------------------------------------------
  20. PRB0002
  21. Symptom : Runtime error 5 when saving a catalog. 
  22. Occurs  : When saving a catalog on a write-protected floppy-disk.
  23. Fix     : WinCat now intercepts possible I/O-errors when saving a catalog,
  24.           and if necessary issues 'retry/cancel' message.  
  25. Modules : WCGLOBAL.PAS(SaveCatalog)
  26. Status  : fixed 15-05-93
  27. ---------------------------------------------------------------------------
  28. PRB0003
  29. Symptom : The used/free space graphic display on the Volume Information
  30.           window doesn't show info for first selected volume. 
  31. Occurs  : When displaying the Volume Information window.
  32. Modules : WCVOLINF.PAS(TVolInfoDialog.SetStatic)
  33. Status  : fixed 14-05-93
  34. ---------------------------------------------------------------------------
  35. PRB0004
  36. Symptom : Creating a new catalog by using the 'Open Catalog...' menu
  37.           isn't conform CUA standards (should be 'New...').
  38. Fix     :           
  39. Modules : WINCAT.PAS
  40. Status  : open
  41. ---------------------------------------------------------------------------
  42. PRB0005
  43. Symptom : WinCat doesn't recognise 'Floptical' disks. Displays 'Disk : 
  44.           Code 63 ??' on Volume Information window.
  45. Occurs  : When displaying Volume Information window for Floptical disk. 
  46. Fix     : Code 63 defined as Floptical           
  47. Modules : WCVOLINF.PAS(TVolInfoDialog.SetStatic)
  48. Status  : fixed 02-05-93
  49. ---------------------------------------------------------------------------
  50. PRB0006
  51. Symptom : If there is more than 9999K free space on a volume, the 'free 
  52.           space' value on the Volume List window gets truncated.
  53. Fix     : WinCat now displays free space in megabytes if it exceeds 9999K.          
  54. Modules : WCGLOBAL.PAS(AddVolumeToListbox)
  55. Status  : fixed 02-05-93
  56. ---------------------------------------------------------------------------
  57. PRB0007
  58. Symptom : WinCat can't scan the contents of archive-files that have the 
  59.           'read-only' attribute.
  60. Fix     : WinCat now opens archive-files in input-only mode.           
  61. Modules : WINCATAR.PAS
  62. Status  : fixed 02-05-93
  63. ---------------------------------------------------------------------------
  64. PRB0008
  65. Symptom : WinCat shows wrong filenames in archive if archive contains
  66.           directory names.
  67. Fix     : Directory-names deleted from filename.           
  68. Modules : WINCATAR.PAS
  69. Status  : fixed 02-05-93
  70. ---------------------------------------------------------------------------
  71. PRB0009
  72. Symptom : WinCat can't handle 'multi-volume' archive-files.   
  73. Fix     :           
  74. Modules : WINCATAR.PAS
  75. Status  : open
  76. ---------------------------------------------------------------------------
  77. PRB0010
  78. Symptom : Beep and empty 'Archive Contents' window when displaying 
  79.           contents of archive file.
  80. Occurs  : When .ACT file cannot be opened, or if it doesn't contain 
  81.           information about selected archive file.
  82. Fix     : WinCat now issues appropriate message.          
  83. Modules : WCFARC.PAS
  84. Status  : fixed 21-05-93
  85. ---------------------------------------------------------------------------
  86. PRB0011
  87. Symptom : When cataloging a volume with the 'catalog archive contents'
  88.           option set, WinCat creates a .ACT file even if the volume doesn't
  89.           contain any archive files.
  90. Fix     : WinCat now first checks for presence of archive-files. If there 
  91.           are no archive-files on the disk being cataloged, no .ACT file
  92.           will be created.          
  93. Modules : WCCATALG.PAS(TCatalogDialog.BOK);
  94. Status  : fixed 15-05-93
  95. ---------------------------------------------------------------------------
  96. PRB0012
  97. Symptom : WinCat ignores user-selected font on startup, and instead uses
  98.           default TERMINAL font.   
  99. Fix     : Changed '=' to '<>'... WinCat now uses user-selected font.          
  100. Modules : WINCAT.PAS(TWinCatDialog.InitWinCat)
  101. Status  : fixed 03-05-93
  102. ---------------------------------------------------------------------------
  103. PRB0013
  104. Symptom : Message 'Filename-extension must be .CAT !' when creating a
  105.           new catalog with an 8-character filename (e.g. PICTURES.CAT).
  106. Modules : WINCAT.PAS(TWinCatDialog.OpenCatalog)
  107. Status  : fixed 22-05-93
  108. ---------------------------------------------------------------------------
  109. PRB0014
  110. Symptom : When running WinCat on a Windows system using 1024x768 display
  111.           mode, characters are too small to read.
  112. Fix     : As my grandfather used to say 'To prevent this from happening :
  113.           don't do it !'          
  114. ---------------------------------------------------------------------------
  115. PRB0015
  116. Symptom : Runtime error at 0003:2652 when saving a catalog
  117. Cause   : When saving a catalog, WinCat first tries to delete the correspon-
  118.           ding .BCK backup file. On some systems this results in a runtime
  119.           error 5 (file access denied). When user installed MS-DOS 6.0
  120.           (instead of DR-DOS 6.0 which he was using) problem disappeared.  
  121. Fix     : Code has been changed to prevent the runtime error. However, this
  122.           can cause WinCat to skip saving a new backup.           
  123. Modules : WCGLOBAL.PAS(SaveCatalog)
  124. Status  : fixed 15-05-93
  125. ---------------------------------------------------------------------------
  126. PRB0016
  127. Symptom : Message 'WINCAT.EXE caused General Protection Failure', followed
  128.           by message 'runtime error at <some address>', or message 'Function
  129.           returncode = xx'.  
  130. Occurs  : After entering an as-long-as-possible file-description on the
  131.           File Information window, and then saving, searching or loading the 
  132.           catalog. 
  133. Cause   : WinCat stored 1 character too many in the file's description
  134.           field, and so corrupted an other field.
  135. Modules : WCFINFO.PAS(TFileInfoDialog.CheckUpdate)
  136. Status  : fixed 08-05-93
  137. ---------------------------------------------------------------------------
  138. PRB0017
  139. Symptom : Unable to re-size the Volume List window ; it stays full-screen.
  140. Cause   : When ending WinCat, WinCat saves the position and size of the
  141.           Volume List, File List and Archive List windows in WINCAT.INI.
  142.           If at that moment the Volume List window is maximized, the values
  143.           saved will cause a 'permanent' full-screen window when starting
  144.           WinCat again.
  145. Fix     : WinCat now only saves the position of these windows if they are
  146.           not maximized/iconized.
  147. Modules : WCGLOBAL.PAS(SaveWindowPosition)
  148. Status  : fixed 09-05-93
  149. ---------------------------------------------------------------------------
  150. PRB0018
  151. Symptom : Instead of picture-buttons, 'empty' buttons with the text 
  152.           'No Bitmap !' show up. Some BMP's don't show at all.
  153. Occurs  : When running WinCat on a Windows system using EGA display mode.
  154.           Problem also seems to occur when using Paradox video driver.
  155. Cause   : When using EGA display mode, a (Turbo Pascal for Windows) program
  156.           must supply different bitmaps (code 2xxx and 6xxx) then when using
  157.           VGA display mode (code 1xxx and 3xxx). The EGA-mode bitmaps are
  158.           not defined in WinCat, hence the 'No Bitmap!' message. 
  159. Fix     : DOC-change - System Requirements : a VGA display...
  160.           (Well, now you know that 'System Requirements' is just a fancy
  161.           way of saying 'program limitations' ) ;-)
  162.           Sorry EGA-folks...   
  163. Modules : WINCAT.DOC
  164. Status  : fixed 03-05-93
  165. ---------------------------------------------------------------------------
  166. PRB0019
  167. Symptom : At times, WinCat's icon turns into a black hole, or shows another
  168.           program's icon.
  169. Cause   : Reserved classname 'Bordlg' used. If another program uses the
  170.           same classname, WinCat's icon goes down the drain.
  171. Fix     : Changed classname to 'Bordlg_wc'.                          
  172. Modules : WINCAT.PAS(GetClassName)
  173. Status  : fixed 09-05-93
  174. ---------------------------------------------------------------------------
  175. PRB0020
  176. Symptom : Text at bottom of Volume List window gets truncated 
  177. Cause   : Error in window 'resize' coding
  178. Modules : WINCAT.PAS(TWinCatDialog.WMSize)
  179. Status  : fixed 13-05-93
  180. ---------------------------------------------------------------------------
  181. PRB0021
  182. Symptom : When clicking 'exit' button on File List window, this window
  183.           gets 'iconized' instead of invisible.  
  184. Cause   : Not really a bug ; I programmed it that way. But because some 
  185.           people got totally and utterly confused by this I changed it.  
  186. Modules : WCFILES.PAS(TFileDialog.Exit)
  187. Status  : fixed 14-05-93
  188. ---------------------------------------------------------------------------
  189. PRB0022
  190. Symptom : Various errors when running WinCat on a 1 MB 286 system (runtime
  191.           errors when displaying windows, when reading catalog etc.)
  192. Cause   : Euuuhhh... I don't know           
  193. Status  : open
  194. ---------------------------------------------------------------------------
  195. PRB0023
  196. Symptom : When cataloging a disk, WinCat reads descript.ion file regardless
  197.           of the setting of the 'read descript.ion' option on the 'Configure'
  198.           window.
  199. Modules : WCCATALG.PAS(TCatalogDialog.BOK)
  200. Status  : fixed 15-05-93
  201. ---------------------------------------------------------------------------
  202. PRB0024
  203. Symptom : Runtime error & message 'Segment Bounds Exceeded' when loading a
  204.           catalog. 
  205. Occurs  : If catalog contains a volume with more than 1000 directories on
  206.           it (e.g. the CICA November 92 CD).
  207. Cause   : Table overflow while reading directories from catalog.             
  208. Modules : WCGLOBAL.PAS(ReadCatalog)
  209. Status  : fixed 22-05-93
  210. ---------------------------------------------------------------------------
  211. PRB0025
  212. Symptom : Message 'Unable to read the disk's directory' when cataloging
  213.           an empty disk.
  214. Cause   : WinCat was programmed to refuse empty disks to be cataloged. This
  215.           has been changed on user's request. 
  216. Modules : WCSELDRV.PAS(TSelDrvDialog.SelectDisk)
  217. Status  : fixed 02-05-93 
  218. ---------------------------------------------------------------------------
  219. PRB0026
  220. Symptom : User installed WinCat. Soon after, the mouse disappeared.
  221. Fix     : ?  
  222. Status  : Yet another unsolved mistery... beware !
  223. ---------------------------------------------------------------------------
  224. PRB0027
  225. Symptom : Volume description entered on Volume Information window gets
  226.           truncated.
  227. Cause   : This window allowed the user to enter an 'infinitely' long
  228.           description. However, WinCat only uses the first 51 characters
  229.           and if necesary truncates the description the user entered.   
  230. Fix     : Description-field now limits input to 51 characters
  231. Modules : WCVOLINF.PAS(TVolInfoDialog.SetupWindow)
  232. Status  : fixed 31-05-93
  233. ---------------------------------------------------------------------------
  234. PRB0028
  235. Symptom : When ending WinCat using the 'Close' option from the system menu,
  236.           WinCat ends immediately without asking the user if updates
  237.           should be saved first. 
  238. Modules : WINCAT.PAS(TWinCatDialog.CMClose)
  239. Status  : fixed 31-05-93
  240. ---------------------------------------------------------------------------
  241. PRB0029
  242. Symptom : Target directory selected on Restore window ignored by WUNA.          running WUNA.
  243. Cause   : Wrong parameter-string passed to WUNA ; '-p' parm must precede
  244.           target directory specification.
  245. Status  : fixed 31-05-93
  246. ---------------------------------------------------------------------------
  247. PRB0030
  248. Symptom : 'Weird' WinCat displays : buttons don't line up, text looks 
  249.            chaotic, windows look a complete mess... 
  250. Cause   : WinCat uses the (Windows default) Sonoran Sans Serif 8-point
  251.           font (SSERIFE.FON) for displaying text ; if this font isn't
  252.           installed on your system (or replaced when you installed an OEM
  253.           display device driver) another font is used, which can cause the
  254.           mentioned problems.
  255.           You can prevent this from happenig by specifying this in file
  256.           WIN.INI :
  257.           [fonts]
  258.           MS Sans Serif 8,10,12,14,18,24 (8514/a res)=SSERIFE.FON
  259. Status  : open
  260. ---------------------------------------------------------------------------
  261.            
  262.